home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / prof / prof_sysdep.h < prev    next >
Text File  |  1999-01-01  |  541b  |  17 lines

  1. /* $VER: prof_sysdep.h V0.1 (28.08.98)
  2.  *
  3.  * Portable profiler for vbcc. AMIGA OS/68k specific part.
  4.  * Copyright (c) 1998  Frank Wille
  5.  *
  6.  * The vbcc profiler is split into a system independant (profiler)
  7.  * and in a system specific (prof_sysdep) part.
  8.  *
  9.  * v0.1  (28.08.98) phx
  10.  *       File created.
  11.  */
  12.  
  13. void __save_volatiles(void)    = "\tmovem.l\td0-d1/a0-a1,-(sp)";
  14. void __restore_volatiles(void) = "\tmovem.l\t(sp)+,d0-d1/a0-a1";
  15. /* Volatile FPU registers are not be saved, because they will */
  16. /* never be used by the profiler. */
  17.